Go to the install folder - usually c:\Program Files (x86)\GnuWin32\ To delete all lines that start with "5": sed "/^5/d" test.txt > new.txt To Replace all lines that begin with "1" with ";1": sed "s/^1/;1/g" test.txt > new.txt